af9169fdd5c790a3e8e6df20e2989e105b5d81a9,portal-impl/src/com/liferay/portal/resiliency/spi/agent/SPIAgentRequest.java,SPIAgentRequest,SPIAgentRequest,#HttpServletRequest#,108
Before Change
((Portlet)request.getAttribute(
WebKeys.SPI_AGENT_PORTLET)).getContextName());
cookies = request.getCookies();
distributedRequestAttributes = extractDistributedRequestAttributes(
request, Direction.REQUEST);
headerMap = extractRequestHeaders(request);
After Change
((Portlet)request.getAttribute(
WebKeys.SPI_AGENT_PORTLET)).getContextName());
Cookie[] cookies = request.getCookies();
if (cookies != null) {
cookiesData = new byte[cookies.length][];
for (int i = 0; i < cookies.length; i++) {